home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / etc / bluetooth / hcid.conf next >
Encoding:
Text File  |  2006-10-20  |  1.2 KB  |  59 lines

  1. #
  2. # HCI daemon configuration file.
  3. #
  4.  
  5. # HCId options
  6. options {
  7.     # Automatically initialize new devices
  8.     autoinit yes;
  9.  
  10.     # Security Manager mode
  11.     #   none - Security manager disabled
  12.     #   auto - Use local PIN for incoming connections
  13.     #   user - Always ask user for a PIN
  14.     #
  15.     security user;
  16.  
  17.     # Pairing mode
  18.     #   none  - Pairing disabled
  19.     #   multi - Allow pairing with already paired devices
  20.     #   once  - Pair once and deny successive attempts
  21.     pairing multi;
  22.  
  23.     # Default PIN code for incoming connections
  24.     passkey "1234";
  25. }
  26.  
  27. # Default settings for HCI devices
  28. device {
  29.     # Local device name
  30.     #   %d - device id
  31.     #   %h - host name
  32.     name "%h-%d";
  33.  
  34.     # Local device class
  35.     class 0x3e0100;
  36.  
  37.     # Default packet type
  38.     #pkt_type DH1,DM1,HV1;
  39.  
  40.     # Inquiry and Page scan
  41.     iscan enable; pscan enable;
  42.     discovto 0;
  43.  
  44.     # Default link mode
  45.     #   none   - no specific policy 
  46.     #   accept - always accept incoming connections
  47.     #   master - become master on incoming connections,
  48.     #            deny role switch on outgoing connections
  49.     lm accept;
  50.  
  51.     # Default link policy
  52.     #   none    - no specific policy
  53.     #   rswitch - allow role switch
  54.     #   hold    - allow hold mode
  55.     #   sniff   - allow sniff mode
  56.     #   park    - allow park mode
  57.     lp rswitch,hold,sniff,park;
  58. }
  59.